home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 401-425 / disk_407 / flex / src.lzh / src / parse.h < prev    next >
C/C++ Source or Header  |  1990-07-14  |  527b  |  34 lines

  1.  
  2. #ifndef YYLTYPE
  3. typedef
  4.   struct yyltype
  5.     {
  6.       int timestamp;
  7.       int first_line;
  8.       int first_column;
  9.       int last_line;
  10.       int last_column;
  11.       char *text;
  12.    }
  13.   yyltype;
  14.  
  15. #define YYLTYPE yyltype
  16. #endif
  17.  
  18. #define    YYACCEPT    return(0)
  19. #define    YYABORT    return(1)
  20. #define    YYERROR    goto yyerrlab
  21. #ifndef YYSTYPE
  22. #define YYSTYPE int
  23. #endif
  24. #define    CHAR    258
  25. #define    NUMBER    259
  26. #define    SECTEND    260
  27. #define    SCDECL    261
  28. #define    XSCDECL    262
  29. #define    WHITESPACE    263
  30. #define    NAME    264
  31. #define    PREVCCL    265
  32. #define    EOF_OP    266
  33.  
  34.